home *** CD-ROM | disk | FTP | other *** search
/ Graphics Plus / Graphics Plus.iso / general / modelers / geomview / source.lha / Geomview / include / cmodel.h < prev    next >
C/C++ Source or Header  |  1993-06-09  |  489b  |  24 lines

  1. /*
  2.  * cmodel.h: declarations for functions dealing with
  3.  *    conformal model of hyperbolic or spherical space
  4.  */
  5.  
  6.  
  7. #ifndef PMODEL_H
  8.  
  9. #include "polylistP.h"
  10. #include "vectP.h"
  11. #include "meshP.h"
  12. #include "quadP.h"
  13.  
  14. void set_cm_refine(double cosmaxbend, int maxrefine, int show_subdivision);
  15.  
  16. void cmodel_clear(int space);
  17. void cm_read_polylist(PolyList *polylist);
  18. void cm_read_vect(Vect *v);
  19. void cm_read_quad(Quad *q);
  20. void cmodel_draw(int plflags);
  21. void cm_draw_mesh(Mesh *m);
  22.  
  23. #endif
  24.